home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
util
/
dir
/
megad31b.lha
/
rexx
/
MDARexxStart.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-06-30
|
526b
|
24 lines
/* MegaD will look for the MDARexxStart.rexx file in its home directory
when it is first run. If it is found it will be executed.
This ARexx program will clear all of the internal strings to NULL.
*/
ADDRESS REXX
OPTION RESULT
ADDRESS MEGAD
dbug TRUE
/* Send output to a console window on the MegaD Screen */
call close 'STDOUT'
call open 'STDOUT','con:0/12/640/100/MegaD RX/SCREEN MEGAD', 'W'
subscript = 0
DO 40
SAY 'Clearing string 'subscript' to NULL'
SetString subscript NULL
subscript = subscript + 1
END